CSS arrays aren't empty, even the ones that appear empty contain one
"none" element.
gtk_css_value_array_print
};
-static GtkCssValue none_singleton = { >K_CSS_VALUE_ARRAY, 1, 0, { NULL } };
-
GtkCssValue *
_gtk_css_array_value_new (GtkCssValue *content)
{
- if (content == NULL)
- return _gtk_css_value_ref (&none_singleton);
+ g_return_val_if_fail (content != NULL, NULL);
return _gtk_css_array_value_new_from_array (&content, 1);
}